/*CSS初始化*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
table, caption, tbody, tfoot, thead, tr, th, td{
    vertical-align:middle!important;
}

/*主体设置*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html{
    overflow-y: scroll;
}
html, body{
    width: 100%;
    height:100%;
    font-family:  "微软雅黑";
}
body{
    font-size: 14px;
    /*-webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;*/
    /*-webkit-tap-highlight-color: rgba(0, 0, 0, 0);*/
}
:before,
:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section,summary{
    display: block;
}
ol, ul, li{
    list-style: none!important;
}
blockquote, q{
    quotes: none;
}
abbr,acronym {
    border: 0;
}
blockquote:before, blockquote:after,
q:before, q:after{
    content: '';
    content: none;
}

a:hover,
a:focus {
    outline: none;
    -moz-outline:none;
}
table{
    border-collapse: collapse;
    border-spacing: 0;
}
caption,th {
    text-align: left;
    font-weight: normal;
}
address,
caption,
cite,
code,
dfn,
i,
em,
strong,
th,
var {
    font-weight: normal;
    font-style: normal;
}
img{
    border:0;
    max-width: 100%!important;
    vertical-align:middle;
}
p{
    word-wrap:break-word;
}

address, cite, dfn, em, var {
    font-style:normal;
}
code, kbd, pre, samp {
    font-family:  "微软雅黑";
}
small{
    font-size:12px;
}
sup {
    vertical-align:text-top;
}
sub{
    vertical-align:text-bottom;
}
fieldset{
    border:0;
}
button, input, select, textarea {
    font-size:100%;
}
button,input,optgroup,select,textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}
select,input,img,select{
    vertical-align:middle;
}

/* custom */
a{
    color: #7e8c8d;
    text-decoration: none;
    outline: none;
    /*-webkit-backface-visibility: hidden;*/
}

/*清除浮动*/
.clearfix:before,
.clearfix:after{
    content: " ";
    display: inline-block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.clearfix{
    *zoom: 1;
}

/*隐藏*/
.hide{
    display: none;
}
/* 主体背景色 */
body{
  background:  #F3F4F7;
}